View Javadoc
1 /*** 2 * ClassLoader 3 * 4 * This class instruments code according 5 * to the Thomas Ball 1996 Path Profiling 6 * algorithm. 7 */ 8 9 package junit.quilt.cover.none; 10 11 import java.util.Iterator; 12 13 import java.net.URL; 14 import java.lang.ClassLoader; 15 16 17 import junit.quilt.framework.*; 18 import junit.quilt.cover.generic.*; 19 import junit.quilt.exception.*; 20 21 import org.apache.bcel.*; 22 import org.apache.bcel.generic.*; 23 import org.apache.bcel.classfile.*; 24 25 import org.apache.commons.graph.*; 26 public class NoneClassLoader 27 extends MethInstClassLoader 28 { 29 private NoneRegistry registry = null; 30 31 publicNoneClassLoader( String packages[],/index.html"> NoneClassLoader( String packages[], 32 URL path[], 33 ClassLoader parent, 34 NoneRegistry registry) { 35 super( packages, path, parent ); 36 this.registry = registry; 37 } 38 39 public void instrumentMethod( InstContext context, 40 ControlFlowGraph graph ) 41 throws QuiltException 42 { 43 } 44 }

This page was automatically generated by Maven